|
|
|
|
OnScrolled Method, SftTabs Class |
Raises the Scrolled event.
Syntax SftTabs Class (Softelvdm.SftTabsNET)
VB |
Protected Overridable Sub OnScrolled( ByVal e As ScrolledEventArgs ) |
C# |
protected virtual void OnScrolled( ScrolledEventArgs e ); |
C++ |
protected: virtual void OnScrolled( ScrolledEventArgs^ e ); |
e
A ScrolledEventArgs that contains the event data.
Comments
The OnScrolled method raises the Scrolled event.
Raising an event invokes the event handler through a delegate.
The OnScrolled method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
When overriding OnScrolled in a derived class, make sure to call the base class's OnScrolled method so that registered delegates receive the event.